home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 16
/
Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso
/
Aminet
/
comm
/
term
/
term_source.lha
/
Extras
/
Source
/
gtlayout-source.lha
/
LTP_SearchKeys.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-03-18
|
933b
|
54 lines
/*
** GadTools layout toolkit
**
** Copyright © 1993-1996 by Olaf `Olsen' Barthel
** Freely distributable.
**
** :ts=4
*/
#ifndef _GTLAYOUT_GLOBAL_H
#include "gtlayout_global.h"
#endif
#ifdef DO_PICKSHORTCUTS
VOID
LTP_SearchKeys(LayoutHandle *handle,ObjectNode *group)
{
ObjectNode *node;
ULONG page;
SCANPAGE(group,node,page)
{
if(node->Type == GROUP_KIND)
LTP_SearchKeys(handle,node);
else
{
if(node->Key)
{
LONG i;
for(i = 0 ; i < 256 ; i++)
{
if(LTP_Keys[0][i] == node->Key || LTP_Keys[1][i] == node->Key)
{
handle->Keys[LTP_Keys[0][i]] = TRUE;
handle->Keys[LTP_Keys[1][i]] = TRUE;
break;
}
}
if(LTP_Keys[1][node->Key])
node->Key = LTP_Keys[0][node->Key];
}
else
{
if((handle->CursorKey == node) || (handle->ReturnKey == node) || (handle->EscKey == node) || (handle->TabKey == node))
node->NoKey = TRUE;
}
}
}
}
#endif